home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d16 / winvn060.arc / WINUNDOC.H < prev    next >
Text File  |  1991-07-01  |  620b  |  20 lines

  1. /*  winundoc.h */
  2. /*  Declarations for KERNEL File I/O and String Functions */
  3. /*  Standard but undocumented functions revealed by Charles Petzold. */
  4.  
  5. int  FAR PASCAL _lopen    (LPSTR, int);
  6. int  FAR PASCAL _lclose (int);
  7. int  FAR PASCAL _lcreat (LPSTR, int);
  8. LONG FAR PASCAL _llseek (int, long, int);
  9. WORD FAR PASCAL _lread    (int, LPSTR, int);
  10. WORD FAR PASCAL _lwrite (int, LPSTR, int);
  11.  
  12. #define READ        0
  13. #define WRITE        1
  14. #define READ_WRITE  2
  15.  
  16. int   FAR PASCAL lstrlen(LPSTR);
  17. LPSTR FAR PASCAL lstrcpy(LPSTR, LPSTR);
  18. LPSTR FAR PASCAL lstrcat(LPSTR, LPSTR);
  19. int   FAR PASCAL lstrcmp(LPSTR, LPSTR);
  20.